home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Developer Helper 1: Phil & Dave's Excellent CD
/
Excellent CD HFS.raw
/
Moof
/
Goodies
/
MPW Goodies
/
Interfaces
/
CIncludes
/
OSEvents.h
< prev
next >
Wrap
Text File
|
1988-11-30
|
1KB
|
62 lines
/************************************************************
Created: Tuesday, October 4, 1988 at 7:06 PM
OSEvents.h
C Interface to the Macintosh Libraries
Copyright Apple Computer, Inc. 1985-1988
All rights reserved
************************************************************/
#ifndef __OSEVENTS__
#define __OSEVENTS__
#ifndef __TYPES__
#include <Types.h>
#endif
#ifndef __EVENTS__
#include <Events.h>
#endif
#ifndef __OSUTILS__
#include <OSUtils.h>
#endif
struct EvQEl {
QElemPtr qLink;
short qType;
short evtQWhat; /*this part is identical to the EventRecord as...*/
long evtQMessage; /*defined in ToolIntf*/
long evtQWhen;
Point evtQWhere;
short evtQModifiers;
};
#ifndef __cplusplus
typedef struct EvQEl EvQEl;
#endif
typedef EvQEl *EvQElPtr;
#ifdef __safe_link
extern "C" {
#endif
pascal OSErr PostEvent(short eventNum,long eventMsg);
pascal OSErr PPostEvent(short eventCode,long eventMsg,EvQElPtr *qEl);
pascal Boolean OSEventAvail(short mask,EventRecord *theEvent);
pascal Boolean GetOSEvent(short mask,EventRecord *theEvent);
pascal void FlushEvents(short whichMask,short stopMask)
= {0x201F,0xA032};
pascal void SetEventMask(short theMask)
= {0x31DF,0x0144};
pascal QHdrPtr GetEvQHdr(void);
#ifdef __safe_link
}
#endif
#endif